home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / RBBS13.SCR < prev    next >
Text File  |  1986-02-22  |  2KB  |  50 lines

  1. .LINKED SCRIPT FOR RBBS VERSION 13.1A SYSTEMS;
  2. .LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR ANY
  3. .RBBS VERSION 13.1A SYSTEM(S).
  4.  
  5. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  6. .  [1] Your FirstName;LastName;Password
  7. .  [2] Any RBBS Command
  8.                
  9. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  10.  
  11. .Display message on-screen only
  12. NOTE ** LOGON TO RBBS VERSION 13.1A **
  13.  
  14. .The next line says to WAITFOR 60 seconds before halting script
  15. TIMEOUT 60
  16.  
  17. .Set key parameters for RBBS
  18. TURNOFF ECHO LINEFEED
  19.  
  20. .Call RBBS;
  21. .phone number, bps, comm parameters depend on directory entry #
  22.  
  23. .RBBS 'logon' is one CR                            
  24. SEND "{"
  25.  
  26. .Wait for RBBS to request your first name
  27. .Some RBBS SYSOPS may modify this prompt; so you may have to edit the prompt
  28. WAITFOR "What is your FIRST Name?"
  29.  
  30. .[1] Reply with your FirstName;LastName;Password for fastest logon
  31. SEND "FIRSTNAME;LASTNAME;FAKE-PASSWORD{"
  32.  
  33. .Wait for RBBS to ask if you'd like to skip the bulletins
  34. .Some RBBS SYSOPS may modify this prompt -- or not ask it;
  35. .so you may have to edit the prompt or delete it (and the Y response)
  36. WAITFOR "bulletins?"
  37.  
  38. .Respond with Y to skip the bulletins
  39. SEND "Y{"
  40.  
  41. .Wait for RBBS to Request your input
  42. WAITFOR "Main Functions <B,C,D,E,F,G,H,I,J,K,L,O,P,Q,R,S,U,V,W,X,?>?"
  43.  
  44. .[2] Send any RBBS command, like this one to read latest messages:
  45. SEND "R;*{"
  46.  
  47. .Discontinue script processing; return control to keyboard
  48. RETURN
  49. 
  50.